From: Stefan Monnier Date: Fri, 26 Mar 2004 16:17:12 +0000 (+0000) Subject: (vc-maybe-resolve-conflicts): Don't prompt the user. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~23490 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=6ecd5af4fdea92984d9e297255e676310ffe5691;p=emacs.git (vc-maybe-resolve-conflicts): Don't prompt the user. --- diff --git a/lisp/vc.el b/lisp/vc.el index d55951eaff8..fdc2d13aa2d 100644 --- a/lisp/vc.el +++ b/lisp/vc.el @@ -7,7 +7,7 @@ ;; Maintainer: Andre Spiegel ;; Keywords: tools -;; $Id: vc.el,v 1.371 2004/03/25 15:39:03 sds Exp $ +;; $Id: vc.el,v 1.372 2004/03/26 06:07:55 spiegel Exp $ ;; This file is part of GNU Emacs. @@ -1989,9 +1989,7 @@ See Info node `Merging'." (vc-resynch-buffer file t (not (buffer-modified-p))) (if (zerop status) (message "Merge successful") (smerge-mode 1) - (if (y-or-n-p "Conflicts detected. Resolve them now? ") - (vc-resolve-conflicts name-A name-B) - (message "File contains conflict markers")))) + (message "File contains conflicts."))) ;;;###autoload (defalias 'vc-resolve-conflicts 'smerge-ediff)